Skip to content

Instantly share code, notes, and snippets.

@ChristopherA
ChristopherA / README.md
Last active February 6, 2026 07:45
Self-Improving Claude Code: A bootstrap seed prompt that evolves into a sophisticated configuration system

Self-Improving Claude Code: A Bootstrap Seed

The Hypothesis

A single prompt (~1400 tokens), placed in a project's .claude/CLAUDE.md, can bootstrap a Claude Code instance into a self-improving system — one that captures learnings, extracts patterns, evolves its own configuration, and gets meaningfully better at helping its user with each session.

No pre-built infrastructure required. No user-level config. No hooks, skills, templates, or elaborate folder hierarchies. Just a seed and the affordances Claude Code already provides.

Background

@sulph68
sulph68 / uConsole GPS Setup.md
Last active February 6, 2026 07:45
uConsole GPS Setup

uConsole GPS Setup

After some more mucking around on a desktop with GPS setup, and taking some of those experiences over to uConsole. Here are Some updated notes on getting GPS setup properly on uConsole. This also applies to Ubuntu setups. Can't comment on the correctness for other distributions, but it should be able to serve as a guide.

This has some improvement over the older method as it no longer uses gnss-share.

NOTE: i use pam_usb for authentication so it is convienient to use sudo in my scripts so it doesn't acrually prompt for a password everytime i use it. YMMV.

geoclue

@antonfrancisjeejo
antonfrancisjeejo / index.css
Created February 5, 2024 17:27
For three.js portfolio
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--blue-rgb: 237 245 255;
--green-rgb: 125 161 35;
}
OS version Arch File HOST sIZE download link Rate lIMITS
Windows 1.0 8086 Winworld (Kansas City, Missouri) 541KB Download ❌ Yes, 25 per day
Windows 2.0 386 Winworld (Kansas City, Missouri) 2.80MB Download ❌ Yes, 25 per day
Windows 3.0 8086/386
@jordanlyall
jordanlyall / openclaw-security-setup.md
Created February 6, 2026 01:44
OpenClaw Security-First Setup Commands - Companion to my X article on hardening your AI agent setup

OpenClaw Security-First Setup Commands

Companion to: "How I Set Up OpenClaw Without Giving It the Keys to My Life"

Phase 1: Harden the Machine

Create Dedicated User

sudo sysadminctl -addUser openclaw -password - -home /Users/openclaw
@nuomi1
nuomi1 / PrintBootCampESDInfo.swift
Last active February 6, 2026 07:39
macOS and BootCamp Latest
#!/usr/bin/env swift
//
// PrintBootCampESDInfo.swift
//
// Created by nuomi1 on 8/5/18.
// Copyright © 2018年 nuomi1. All rights reserved.
//
import Foundation
@emschwartz
emschwartz / README.md
Last active February 6, 2026 07:38
The Most Popular Blogs of Hacker News in 2025

This is an OPML version of the HN Popularity Contest results for 2025, for importing into RSS feed readers.

Plug: if you want to find content related to your interests from thousands of obscure blogs and noisy sources like HN Newest, check out Scour. It's a free, personalized content feed I work on where you define your interests in your own words and it ranks content based on how closely related it is to those topics.

@iAmNikola
iAmNikola / fishtank_archive_downloader.py
Last active February 6, 2026 07:35
Download archive footage from a folder within Fishtank.live archive. NOTE: You DON'T need a season pass to have access to archives this way!
from concurrent.futures import ThreadPoolExecutor
import json
from pathlib import Path
import sys
from typing import List
import requests
### How to extract the AUTHTOKEN:
### 1. Open DevTools (f12 on chrome)
@badbye
badbye / free_doc88.js
Created February 8, 2022 04:39
免费下载道客巴巴的文档. download file from doc88.com without paying
$('#continueButton').click()
var keeps = $("#pageContainer").parentsUntil('body').toArray().concat($("#pageContainer").children().toArray())
var divs = $("div:not(#pageContainer)").toArray()
divs.filter(x => keeps.indexOf(x) < 0).forEach(x => x.remove())
window.print()
user = int(input('введите число для сранения-'))
if user > 10:
print('это число больше 10')
if user < 10:
print('это число меньше 10')
if user == 10:
print('это число равно 10')